projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
340f92b
)
(Fset_visited_file_modtime): Don't give the handler
author
Richard M. Stallman
<rms@gnu.org>
Mon, 14 Jun 1993 03:49:04 +0000
(
03:49
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Mon, 14 Jun 1993 03:49:04 +0000
(
03:49
+0000)
the filename as an argument.
src/fileio.c
patch
|
blob
|
history
diff --git
a/src/fileio.c
b/src/fileio.c
index 68ad27909692212e953f9e662eb028f7f2a45799..e3a2cc9f2bb65bf686a911b911b03e95ab1f0691 100644
(file)
--- a/
src/fileio.c
+++ b/
src/fileio.c
@@
-2910,7
+2910,8
@@
An argument specifies the modification time value to use\n\
call the corresponding file handler. */
handler = Ffind_file_name_handler (filename);
if (!NILP (handler))
- return call3 (handler, Qset_visited_file_modtime, filename, Qnil);
+ /* The handler can find the file name the same way we did. */
+ return call3 (handler, Qset_visited_file_modtime, Qnil);
else if (stat (XSTRING (filename)->data, &st) >= 0)
current_buffer->modtime = st.st_mtime;
}